Re: [INTERFACES] JDBC and getting just assigned serial number - Mailing list pgsql-sql

From Herouth Maoz
Subject Re: [INTERFACES] JDBC and getting just assigned serial number
Date
Msg-id l03130301b40ea195509c@[147.233.159.109]
Whole thread Raw
List pgsql-sql
At 21:19 +0200 on 13/09/1999, Christoph Steinbeck wrote:


> I'm thrilled to see that there is some kind of discussion running in the
> C area on the exact equivalent of my very recent JDBC problem.
> I insert a row into a table where one field is a SERIAL. This SERIAL, of
> course, is automatically assigned by PostgreSQL. How do I get this
> number immeadiately after inserting the row? When I issue the command
> with psql I get back some kind of number which presumably is the OID.
> Getting just this one would be fine too because I need it for
> referencing.

I have answered this question several times already on the SQL list. It has
nothing to do with Java or any other interface you are using (except,
maybe, the question about how to get the OID).

Let's make it short.

1) Don't use OIDs for reference. It will only make life harder.

2) If you want to use the OID just to retrieve that last row, make sure  that the OID column is indexed, otherwise you
arein for sequential  searching. See, I told you not to use it...
 

3) As for the serial field. "serial" is a shorthand notation for  creating an PostgreSQL sequence, and taking the next
numberfrom  that sequence. You can see the name of the sequence that was  created with a quick \ds in psql.
 
  Now, after inserting a row, use SELECT currval('sequence_name');  The number returned is the number assigned to the
serialnumber in  the last INSERT statement of the current session.
 

Herouth

--
Herouth Maoz, Internet developer.
Open University of Israel - Telem project
http://telem.openu.ac.il/~herutma




pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: [SQL] [GENERAL] UPDATE feature or bug?
Next
From: "Jackson, DeJuan"
Date:
Subject: RE: [SQL] Date type select